{% extends 'base_dashboard.html' %} {% block title %}Change Password — {{ site_settings.institute_name }}{% endblock %} {% block content %}

Change password

Enter your current password, then choose a new one

Back to profile
{% if form.non_field_errors %}
{{ form.non_field_errors }}
{% endif %}
{% csrf_token %}
{{ form.current_password }} {% if form.current_password.errors %}
{{ form.current_password.errors.0 }}
{% endif %}
{{ form.new_password1 }} {% if form.new_password1.errors %}
{{ form.new_password1.errors.0 }}
{% endif %}
Min 8 characters. Avoid common or entirely numeric passwords.
{{ form.new_password2 }} {% if form.new_password2.errors %}
{{ form.new_password2.errors.0 }}
{% endif %}
{% endblock %}